Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632543 Views

Latest files of /cody/solygambas/html-css-javascript-projects/065-hangman game

style.css cody/solygambas/html-css-javascript-projects/065-hangman game/style.css
123 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&display=swap");

:root {
--primary-color: #1f2f61;
--secondary-color: #224ca4;
--light-color: #a7c2da;
}

index.html cody/solygambas/html-css-javascript-projects/065-hangman game/index.html
292 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Hangman</title>
</head>
script.js cody/solygambas/html-css-javascript-projects/065-hangman game/script.js
177 Views
0 Comments
const wordElement = document.getElementById("word");
const wrongLettersElement = document.getElementById("wrong-letters");
const playAgainButton = document.getElementById("play-button");
const popup = document.getElementById("popup-container");
const notification = document.getElementById("notification-container");
const finalMessage = document.getElementById("final-message");
const finalMessageRevealWord = document.getElementById(
"final-message-reveal-word"